

* {
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
  }
  
  body {
    min-height: 100%;
    margin: 0;
    /* font-family: Arial, sans-serif; */

    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
  
  img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
  }
  
  h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
  }
  
  .inline-block {
    max-width: 100%;
    display: inline-block;
  }
  
  .page-wrapper {
    z-index: 0;
    position: relative;
  }
  
  .container {
    width: 90vw;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .margin-bottom-medium {
    margin-bottom: 32px;
  }
  
  .paragraph-large {
    letter-spacing: -0.02em;
    font-size: 20px;
  }
  
  .section-timeline-heading {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.644);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding-top: 20px;
    padding-bottom: 5px;
    /* color: linear-gradient(90deg, #00fff0, #3E98FF, #ff70a6); */
    background-color: rgb(0, 0, 0,);
  backdrop-filter: blur(10px);
  box-shadow: 2px 2px 18px  #2ee4f4c8;
  color: rgb(113, 230, 230);
  }
  
  
  .padding-vertical-xlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .timeline-main_heading-wrapper {
    color: #fff;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .timeline_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
  }
  
  .timeline_item {
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 180px 1fr;
    grid-auto-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    position: relative;
  }
  
  .timeline_left {
    text-align: right;
    justify-content: flex-end;
    align-items: stretch;
  }
  
  .timeline_centre {
    justify-content: center;
    display: flex;
  }
  
  .timeline_date-text {
    color: #fff;
    letter-spacing: -0.03em;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    position: sticky;
    top: 50vh;
  }
  
  .timeline_text {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
  }
  
  .timeline_circle {
    background-color: #fff;
    border-radius: 100%;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    min-height: 15px;
    max-height: 15px;
    position: sticky;
    top: 50vh;
    box-shadow: 0 0 0 8px #0a0a0a;
  }
  
  .timeline_progress {
    z-index: -2;
    background-color: #414141;
    width: 3px;
    height: 100%;
    position: absolute;
  }
  
  .timeline_progress-bar {
    z-index: -1;
    background: #ff6a00;
    background: -webkit-linear-gradient(to bottom, #ff6a00, #ee0979);
    background: linear-gradient(to bottom, #ff6a00, #ee0979);
  
    width: 3px;
    height: 50vh;
    position: fixed;
    inset: 0 auto 50vh;
  }
  
  .section-timeline {
    z-index: -3;
    background-color:transparent;
    position: relative;
  }
  
  .margin-bottom-xlarge {
    margin-bottom: 56px;
  }
  
  .timeline_link {
    opacity: 0.6;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
  }
  
  .timeline_link:hover {
    opacity: 1;
  }
  
  .link-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  
  .inline-block {
    display: inline-block;
  }
  
  .text-colour-lightgrey {
    color: #ffffffa6;
  }
  
  .overlay-fade-top {
    background: transparent;
    height: 80px;
    position: absolute;
    inset: 0% 0% auto;
  }
  
  .overlay-fade-bottom {
    background: transparent;
    height: 80px;
    position: absolute;
    inset: auto 0% 0%;
  }
  
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 40px;
    }
  
    .paragraph-large {
      font-size: 18px;
    }
  
    .padding-vertical-xlarge {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .timeline_item {
      grid-template-columns: 64px 1fr;
      width: 100%;
    }
  
    .timeline_left {
      text-align: left;
      grid-area: 1 / 2 / 2 / 3;
    }
  
    .timeline_centre {
      justify-content: flex-start;
      grid-area: 1 / 1 / 3 / 2;
    }
  
    .timeline_right {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    .timeline_date-text {
      margin-bottom: 24px;
      font-size: 36px;
    }
  
    .timeline_text {
      font-size: 20px;
    }
  
    .timeline_progress {
      left: 6px;
    }
  
    .margin-bottom-xlarge {
      margin-bottom: 48px;
    }
  }


  #starfield {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100vw;
    height: 100vh;
    background: black;
  }
  